home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / retention.js < prev    next >
Encoding:
JavaScript  |  2005-06-01  |  3.4 KB  |  81 lines

  1. /*
  2.  * -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  3.  * ***** BEGIN LICENSE BLOCK *****
  4.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public License Version
  7.  * 1.1 (the "License"); you may not use this file except in compliance with
  8.  * the License. You may obtain a copy of the License at
  9.  * http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS IS" basis,
  12.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.  * for the specific language governing rights and limitations under the
  14.  * License.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * The Mozilla Foundation
  18.  * Portions created by the Initial Developer are Copyright (C) 2005
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *  David Bienvenu <bienvenu@mozilla.org>
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ****** */
  37.  
  38.  
  39. function initCommonRetentionSettings(retentionSettings)
  40. {
  41.   document.getElementById("retention.keepUnread").checked =  retentionSettings.keepUnreadMessagesOnly;
  42.   document.getElementById("retention.keepMsg").value = retentionSettings.retainByPreference;
  43.   if(retentionSettings.daysToKeepHdrs > 0)
  44.     document.getElementById("retention.keepOldMsgMin").value = 
  45.     (retentionSettings.daysToKeepHdrs > 0) ? retentionSettings.daysToKeepHdrs : 30;
  46.   document.getElementById("retention.keepNewMsgMin").value = 
  47.     (retentionSettings.numHeadersToKeep > 0) ? retentionSettings.numHeadersToKeep : 30;
  48.  
  49.   document.getElementById("retention.keepMsg").value = retentionSettings.retainByPreference;
  50. }
  51.  
  52.  
  53.  
  54. function saveCommonRetentionSettings()
  55. {
  56.   var retentionSettings = new Object;
  57.  
  58.   retentionSettings.retainByPreference = document.getElementById("retention.keepMsg").value;
  59.  
  60.   retentionSettings.daysToKeepHdrs = document.getElementById("retention.keepOldMsgMin").value;
  61.   retentionSettings.numHeadersToKeep = document.getElementById("retention.keepNewMsgMin").value;
  62.   retentionSettings.keepUnreadMessagesOnly = document.getElementById("retention.keepUnread").checked;
  63.  
  64.   return retentionSettings;
  65. }
  66.  
  67.  
  68. function onCheckKeepMsg()
  69. {
  70.   if (gLockedPref && gLockedPref["retention.keepMsg"]) {
  71.     // if the pref associated with the radiobutton is locked, as indicated
  72.     // by the gLockedPref, skip this function.  All elements in this
  73.     // radiogroup have been locked by the function onLockPreference.
  74.     return;
  75.   }
  76.  
  77.   var keepMsg = document.getElementById("retention.keepMsg").value;
  78.   document.getElementById("retention.keepOldMsgMin").disabled = keepMsg != 2;
  79.   document.getElementById("retention.keepNewMsgMin").disabled = keepMsg != 3;
  80. }
  81.